home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- public class MissingResourceException extends RuntimeException {
- private String className;
- private String key;
-
- public MissingResourceException(String s, String className, String key) {
- super(s);
- this.className = className;
- this.key = key;
- }
-
- public String getClassName() {
- return this.className;
- }
-
- public String getKey() {
- return this.key;
- }
- }
-